home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rwvector.lha / RWVector2.1 / rw / depragmatize < prev    next >
Text File  |  1989-08-14  |  237b  |  13 lines

  1. #!    /bin/csh
  2. #
  3. #    remove pragma statements from .h files
  4. #
  5. #    This is necessary when using non-GNU c preprocessors
  6. #
  7. foreach file (*.h)
  8.     echo $file
  9.     sed 's&^#pragma&// #pragma&' $file > $file.new
  10.     mv $file $file.old
  11.     mv $file.new $file
  12. end
  13.